Assignment¶
The assignment will require you to complete cells, create new ones, and move around some cells. You need to familiarize yourself with the Jupyter notebook interface. You can find a tutorial here.
MAKE SURE TO MAKE A COPY OF THIS ASSIGNMENT IN YOUR OWN REPOSITORY. (delete this line in your new copy :) )
(HEADING 1)¶
[EXERCISE 5]
In [14]:
a=3
b=7
suma¶
In [16]:
a+b
Out[16]:
10
resta¶
In [17]:
b-a
Out[17]:
4
multiplicacion¶
In [18]:
a*b
Out[18]:
21
division¶
In [19]:
b/a
Out[19]:
2.3333333333333335